home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Talking Telnet / source / config / LinkedList.proto.h < prev    next >
Text File  |  1996-06-22  |  797b  |  16 lines

  1. //LinkedList.proto.h
  2.  
  3. #include "LinkedList.h"
  4.  
  5. LinkedListNode *createSortedList(ResType ConfigResourceType,short numberofitems,Str255 placeThisFirst);
  6. void deleteItem(LinkedListNode **theHead,Str255 ItemName);
  7. LinkedListNode *findNode(LinkedListNode *theHead,Str255 ItemName);
  8. short reSortElement(LinkedListNode **theHead, LinkedListNode *theChangedElement);
  9. void insertInSortedList(LinkedListNode **head, LinkedListNode *newItem);
  10. void deleteList(LinkedListNode **theHead);
  11. short createNodeAndSort(LinkedListNode **head, Str255 theName);
  12. short findNodeIndex(LinkedListNode *theHead,Str255 ItemName);
  13. short findClosestNodeIndex(LinkedListNode *theHead,Str255 ItemName);
  14. void addListToMenu(MenuHandle theMenu, LinkedListNode *theHead);
  15. void getAUniqueName(LinkedListNode *theHead, Str255 theName);
  16.